home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 27
/
CU Amiga Magazine's Super CD-ROM 27 (1998)(EMAP Images)(GB)[!][issue 1998-10].iso
/
CUCD
/
Online
/
News
/
Thor
/
rexx
/
examples
/
ShowText_ex.thor
< prev
Wrap
Text File
|
1997-09-15
|
375b
|
27 lines
/*
* $VER: ShowText_ex.thor 1.0 (6.9.95)
* - example program for the SHOWTEXT function
*
*/
options results
thorport = address()
REQUESTFILE title '"Select text file to view:"' id '"s:"' fullpath
if(rc ~= 0) then
do
if(rc = 30) then say THOR.LASTERROR
exit
end
filename = result
SHOWTEXT file '"'filename'"' CMT
if(rc = 30) then
do
say THOR.LASTERROR
end
exit